home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / findch2r / frmaddre.frm (.txt) < prev    next >
Visual Basic Form  |  1999-06-21  |  2KB  |  63 lines

  1. VERSION 5.00
  2. Begin VB.Form frmAddressFinder 
  3.    BackColor       =   &H80000007&
  4.    Caption         =   "Address Finder"
  5.    ClientHeight    =   1410
  6.    ClientLeft      =   60
  7.    ClientTop       =   345
  8.    ClientWidth     =   4680
  9.    Icon            =   "frmAddressFinder.frx":0000
  10.    LinkTopic       =   "Form1"
  11.    ScaleHeight     =   1410
  12.    ScaleWidth      =   4680
  13.    StartUpPosition =   3  'Windows Default
  14.    Begin VB.CommandButton cmdCancel 
  15.       Caption         =   "Cancel"
  16.       Height          =   375
  17.       Left            =   2640
  18.       TabIndex        =   3
  19.       Top             =   840
  20.       Width           =   1575
  21.    End
  22.    Begin VB.CommandButton cmdOpen 
  23.       Caption         =   "Open The DoorWay"
  24.       Height          =   375
  25.       Left            =   240
  26.       TabIndex        =   2
  27.       Top             =   840
  28.       Width           =   1815
  29.    End
  30.    Begin VB.TextBox txtAddressFinder 
  31.       Height          =   285
  32.       Left            =   120
  33.       TabIndex        =   0
  34.       Top             =   480
  35.       Width           =   4215
  36.    End
  37.    Begin VB.Label lblAddress 
  38.       BackColor       =   &H80000008&
  39.       Caption         =   "Enter The Address You would Like to Goto."
  40.       ForeColor       =   &H000000FF&
  41.       Height          =   375
  42.       Left            =   600
  43.       TabIndex        =   1
  44.       Top             =   120
  45.       Width           =   3255
  46.    End
  47. Attribute VB_Name = "frmAddressFinder"
  48. Attribute VB_GlobalNameSpace = False
  49. Attribute VB_Creatable = False
  50. Attribute VB_PredeclaredId = True
  51. Attribute VB_Exposed = False
  52. Private Sub cmdCancel_Click()
  53. frmAddressFinder.Hide
  54. End Sub
  55. Private Sub cmdOpen_Click()
  56. frmDoorToTheNet.txtAddress.Text = txtAddressFinder.Text
  57. frmAddressFinder.Hide
  58. frmDoorToTheNet.WebBrowser1.Navigate txtAddress
  59. 'Call frmDoorToTheNet.imgOpenDoor
  60. 'frmDoorToTheNet.WebBrowser1.Navigate txtAddress
  61. 'Call frmDoorToTheNet.imgOpenDoor_Click
  62. End Sub
  63.